home *** CD-ROM | disk | FTP | other *** search
/ DC Comics: Collected Edit…& Graphic Novels Library / DC Comics: Collected Editions & Graphic Novels Library.iso / pc / graphic_novels / categorylist.js < prev    next >
Encoding:
JavaScript  |  2003-07-23  |  1.4 KB  |  68 lines

  1.  
  2. /*
  3.  *  Note: If there is a quotation mark character within the text for a field, you must
  4.  *  escape that character using the . e.g.  ...including the "Outer Dark" story arc...
  5.  */
  6.  
  7.     // Define data arrays for each data field.
  8.     // Do not change these definitions.
  9.  
  10.     var catIndex = -1;
  11.     var catTitle = new Array();  //the title of the category as displayed on the webpage
  12.     var catDir = new Array();      //the relative pathname to the directory of the category
  13.  
  14.  
  15. // Make changes to this file below.
  16. // Insert data into the arrays below.
  17.  
  18.  
  19. // next item
  20. catIndex++;
  21. catTitle[catIndex] = "BEST SELLERS";
  22. catDir[catIndex] = "bestsellers";
  23.  
  24. // next item
  25. catIndex++;
  26. catTitle[catIndex] = "DC UNIVERSE";
  27. catDir[catIndex] = "dcuniverse";
  28.  
  29. // next item
  30. catIndex++;
  31. catTitle[catIndex] = "BATMAN";
  32. catDir[catIndex] = "batman";
  33.  
  34. // next item
  35. catIndex++;
  36. catTitle[catIndex] = "SUPERMAN";
  37. catDir[catIndex] = "superman";
  38.  
  39. // next item
  40. catIndex++;
  41. catTitle[catIndex] = "ARCHIVES";
  42. catDir[catIndex] = "archives";
  43.  
  44. // next item
  45. catIndex++;
  46. catTitle[catIndex] = "VERTIGO";
  47. catDir[catIndex] = "vertigo";
  48.  
  49. // next item
  50. catIndex++;
  51. catTitle[catIndex] = "WILDSTORM";
  52. catDir[catIndex] = "wildstorm";
  53.  
  54. // next item
  55. catIndex++;
  56. catTitle[catIndex] = "WILL EISNER LIBRARY";
  57. catDir[catIndex] = "eisner";
  58.  
  59. // next item
  60. catIndex++;
  61. catTitle[catIndex] = "MAD";
  62. catDir[catIndex] = "mad";
  63.  
  64. // next item
  65. catIndex++;
  66. catTitle[catIndex] = "PARADOX";
  67. catDir[catIndex] = "paradox";
  68.